home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / PROGRAMM / BASIC / 2905.ZIP / QWEZ.ZIP / READ.ME < prev    next >
Text File  |  1993-06-01  |  12KB  |  280 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.                       **  MISCELLANEOUS INFORMATION **
  8.  
  9.  
  10.      1.  To print the manual at the DOS prompt enter:
  11.  
  12.          PRNTDOT       ( For most printers )
  13.          PRNTLAS       ( For HP compatible laser printers )
  14.  
  15.          PRNTDOT.BAT or PRNTLAS.BAT and WIND_REZ.DOC must be in the
  16.          default drive and current directory.
  17.  
  18.  
  19.      2.  To print the quick reference guide ( enhanced version
  20.          only ) at the DOS prompt enter;
  21.  
  22.          PRNTDOT2     ( For most printers )
  23.          PRNTLAS2     ( For HP compatible laser printer )
  24.  
  25.          PRNTDOT2.BAT or PRNTLAS2.BAT and QUICKREF.DOC must be in
  26.          the default drive and current directory.
  27.  
  28.  
  29.      3.  To run the demonstration program at the DOS prompt, enter:
  30.  
  31.                                 DEMO
  32.  
  33.  
  34.      4.  NOTES FOR BASIC 7.1 AND VBDOS 1.0 USERS. ( ENHANCED VERSION )
  35.  
  36.          Do not use unnamed COMMON blocks in your program.  If your
  37.          program requires unnamed COMMON blocks see the section
  38.          "Important notes for BASIC 7.1/ VBDOS users." in the
  39.          documentation.
  40.  
  41.  
  42.      5. NOTE FOR BASIC 7.1 AND VBDOS USERS.  ( UNENHANCED VERSION )
  43.  
  44.          Do not use unnamed COMMON blocks in your program.  The
  45.          enhanced version of WINDOWS R-E-Z provides the ability to
  46.          use unnamed COMMON blocks.
  47.  
  48.  
  49.      6.   Compatibility issues:
  50.  
  51.           NOTE: To assure compatibility with earlier versions replace
  52.           the declare statements in programs written with earlier
  53.           versions with the DECLARE.INC file included with version
  54.           5.10.  This will assure argument matching.  Failure to do
  55.           this can result in the program crashing.
  56.  
  57.           SEE UPDATE.DOC FOR CHANGES IN VERSIONS 6.00 AND 6.10
  58.  
  59.           The following routines were changed or added in version
  60.           5.10 and are not compatible with earlier versions. Program
  61.           revisions are necessary for programs incorporating earlier
  62.           versions.  ( SEE WIND_REZ.DOC AND UPDATE.DOC FOR DETAILS )
  63.  
  64.           - SETWIND has two less arguments.  Routine SETSCRL now sets
  65.             scroll and pulldown window parameters.
  66.  
  67.           - Routine SCRLWIND has new arguments specifying the line and
  68.             column placement of the entries.
  69.  
  70.           - Routine PULLDOWN has two new arguments. One sets the
  71.             allowable "exit keys". This replaces the argument added in
  72.             version 5.00 which suppressed exit on ESC.  The other
  73.             returns a value representing the key used to exit.
  74.  
  75.           - Routine GETANS has two modes of operation. To use as in
  76.             previous versions argument ANS$ MUST equal "" on entry.
  77.  
  78.  
  79.           The following routines were changed or added in version
  80.           5.00 and are not compatible with earlier versions. Program
  81.           revisions are necessary for programs incorporating earlier
  82.           versions.  ( SEE WIND_REZ.DOC AND UPDATE.DOC FOR DETAILS )
  83.  
  84.           - SETWIND has less arguments.  Routine INPTINIT now sets input
  85.             parameters.
  86.  
  87.           - Routine INPTINIT must be called once in any program
  88.             prior to calling input routines INPTWIND and MULTINPT.
  89.  
  90.           - Two arguments in routine MULTINPT have different
  91.             responsibilities.
  92.  
  93.             o The values for the exit keys in argument RKEY% have
  94.               been expanded.  All exit possibilities are resolved
  95.               via argument RKEY%.
  96.  
  97.             o Checking for exit strings AUTO, FIXED, PGUP, PGDN,
  98.               ESC, and F1 to F10 is no longer required or possible
  99.               via old argument EXIT$.  EXIT$ is changed to CODE$
  100.               in version 5.00.  It determines the type of multi-
  101.               field input screen on input.
  102.  
  103.              Ver. 5.00 (argument RKEY%)    Previous versions (EXIT$)
  104.  
  105.               1 to 10                           "F1" to F10"
  106.               11                                "PGUP"
  107.               12                                "PGDN"
  108.               27                                "ESC"
  109.               32                                "FIXED"
  110.               Use value returned by argument    "AUTO"
  111.               AUTOEXIT% to check for auto-exit
  112.               fields. If field #1 was defined
  113.               as auto-exit and AUTOEXIT% = 1, on
  114.               exit, MULTINPT was exited with
  115.               the cursor residing in, or leaving
  116.               auto-exit field #1. If AUTOEXIT% = 0,
  117.               on exit, the field was not an auto-
  118.               exit field or was auto-exit, on
  119.               change, and the data was unchanged.
  120.  
  121.           - Argument RK% in routine INPTWIND returns different values
  122.             conforming to the exit key representation in routines
  123.             SCRLWIND and MULTINPT
  124.  
  125.             RK%                         EXIT KEY
  126.  
  127.             1 to 10                     F1 to F10
  128.             11                          PGUP
  129.             12                          PGDN
  130.             13                          RETURN (ENTER)
  131.             27                          ESC
  132.  
  133.           - Routine RSTRINPT must be called after a call to routine
  134.             INPTWIND if the area under the active input window is to be
  135.             restored and the active input window is to be deactivated.
  136.  
  137.           - The menubar definition for pulldown windows no longer
  138.             requires a separate argument in routine SETPULL.
  139.  
  140.           - The array defining pulldown windows in routine SETPULL
  141.             has been changed to include the menubar selections,
  142.             info-line text for the menubar selections, and the
  143.             individual pulldown window selections.
  144.  
  145.           - Routine PULLDOWN has two new arguments. One allows the
  146.             choice for exit on the ESC key.  The other represents
  147.             the text for the info-line for pulldown window selections.
  148.  
  149.           - Routine RSTRPULL must be called after routine PULLDOWN
  150.             if the display area under the active pulldown window,
  151.             on exit from routine PULLDOWN, is to be restored and
  152.             the active pulldown window is to be deactivated.
  153.  
  154.           _ Routine SCRLWIND has three additional arguments.
  155.  
  156.             o Argument INFO$() is an array holding the data for the
  157.               info-line for the selections in the scroll window.
  158.  
  159.             o Argument TL$ hold the title for scroll windows with a
  160.               title box.  Using TL$ allows a title longer than the
  161.               windows width for virtual scroll windows.
  162.  
  163.             o Argument RK% represents the key used to exit the scroll
  164.               window.
  165.  
  166.               RK%                       EXIT KEY
  167.  
  168.               13                        RETURN or auto-exit match
  169.               14                        SHIFT TAB ( Single mark only )
  170.               15                        TAB       "                  "
  171.               27                        ESC
  172.  
  173.           - The current directory returned by routine FINDPATH no
  174.             longer always ends with a "\".  DOS specifications
  175.             are now followed.
  176.  
  177.           - The argument in routine FINDDIR which specifies the path
  178.             no longer must end with a "\".  The argument now follows
  179.             DOS specifications.
  180.  
  181.  
  182.           The following routines were changed in version 4.20 and
  183.           are not compatible with earlier versions.  Minor program
  184.           revisions are necessary for programs incorporating
  185.           earlier versions.  ( SEE WIND_REZ.DOC FOR DETAILS )
  186.  
  187.           - SETWIND has an additional argument which specifies the
  188.             date format for input routines.
  189.  
  190.           - SETPULL has three additional arguments.  These arguments
  191.             set the menubar's top row and left column position and the
  192.             menubar's width.
  193.  
  194.           - INPTWIND has an additional argument.  It is used to deter-
  195.             mine if the RETURN key or ESC key exited the routine.
  196.  
  197.           - MULTINPT has an additional argument.  It is used to deter-
  198.             mine which key exited an autoexit field.
  199.  
  200.           The following routine was changed in version 4.10 and
  201.           is not compatible with earlier versions.  Minor program
  202.           revisions are necessary for programs incorporating
  203.           earlier versions.  ( SEE WIND_REZ.DOC FOR DETAILS )
  204.  
  205.           - SETWIND has an extra argument to disable the scroll window
  206.             direction arrow.
  207.  
  208.           - After a window is made or saved it must be deleted via
  209.             RSTRWIND or DELWIND before the number assigned to the window
  210.             can be used by again MAKEWIND or SAVEWIND.  This prevents a
  211.             window from being accidently "made over itself".  Failure
  212.             to delete a window before using the window number again
  213.             will result in an ERROR 8 - WINDOW PRE-EXISTS.
  214.  
  215.  
  216.           The following routines were changed in version 4.00/.01 and
  217.           are not compatible with earlier versions.  Minor program
  218.           revisions are necessary for programs incorporating
  219.           earlier versions.  ( SEE WIND_REZ.DOC FOR DETAILS )
  220.  
  221.           - GETANS, PULLDOWN, and INPTWIND have an extra argument
  222.             for border designation.
  223.  
  224.           - SETWIND now has five argument designating windowing
  225.             speed, default sound, window shadow color, high intensity
  226.             display for PULLDOWN and SCRLWIND, and the type of decimal
  227.             point ( period or comma for some non-USA users ).
  228.  
  229.           - SCRLWIND no longer has a argument for the window number
  230.             as it acts upon the active window.
  231.  
  232.           - SETINPT has an extra argument specifying the color of the
  233.             active field for MULTINPT.
  234.  
  235.           - FINDDIR has one less argument as it no longer has to
  236.             place the directory listing in a string.
  237.  
  238.           - SETSOUND is no longer required due to changes in SETWIND.
  239.  
  240.           - CHNGFAST is no longer required due to changes in SETWIND.
  241.  
  242.           - FILLDIR is no longer required due to changes in FINDDIR.
  243.  
  244.           - The argument designating the code ( CODE$ ) for INPTWIND
  245.             has changed.
  246.  
  247.           - The argument designating the type of directory search
  248.             ( TYPE$ ) in FINDDIR has changed.
  249.  
  250.  
  251.           The following routines were changed in version 3.60 and
  252.           are not compatible with earlier versions.  Minor program
  253.           revisions are necessary for programs incorporating
  254.           earlier versions.  ( SEE WIND_REZ.DOC FOR DETAILS )
  255.  
  256.           - PULLDOWN has an extra argument which sets the color of
  257.             the key character for the items in the pulldown window.
  258.             PULLDOWN no longer returns the selected menubar string
  259.             and pulldown window string to the calling program. It
  260.             returns the sequential number of the selected menubar
  261.             item and selected pulldown window item.
  262.  
  263.           - SCRLWIND has an extra argument which sets the color of
  264.             the key characters for the items in the scroll window.
  265.             SCRLWIND no longer returns the selected string.  It re-
  266.             turns the sequential number of the string in the scroll
  267.             window.
  268.  
  269.  
  270.           The following input routines changed in version 3.40,
  271.           are not compatible with earlier versions.  Minor program
  272.           revisions are necessary for programs incorporating
  273.           earlier versions.  ( SEE WIND_REZ.DOC FOR DETAILS )
  274.  
  275.           - INPTWIND and SETINPT have an extra argument defining
  276.             allowable characters for RESTRICTED fields.
  277.  
  278.           - MULTINPT has an additional argument which determines
  279.             if all fields or single fields are updated.
  280.